home *** CD-ROM | disk | FTP | other *** search
/ Super Shareware Collection / Super Shareware Collection.iso / os_2 / memsz220.zip / PROCESS.H < prev    next >
Text File  |  1994-02-07  |  370b  |  17 lines

  1. // Class PROCESS: Encapsulates the startup/shutdown logic for a OS/2-PM process.
  2.  
  3. #define INCL_WIN
  4. #include <os2.h>
  5.  
  6. class Process
  7. {
  8.   private:
  9.     HAB Anchor ;
  10.     HMQ Queue ;
  11.  
  12.   public:
  13.     Process ( LONG QueueSize = 0 ) ;
  14.     ~Process ( ) ;
  15.     inline HAB QueryAnchor () { return ( Anchor ) ; }
  16.     inline HMQ QueryQueue () { return ( Queue ) ; }
  17. } ;